home *** CD-ROM | disk | FTP | other *** search
/ Amiga Plus 2004 #11 / Amiga Plus CD - 2004 - No. 11.iso / AmiSoft / Biz / swood / FW_Scripts.lha / FW_Scripts / ColorToggle.rexx < prev    next >
OS/2 REXX Batch file  |  2004-07-10  |  187b  |  12 lines

  1. /*
  2. Toggle display prefs between Color and NTSC grey.
  3. */
  4.  
  5. OPTIONS RESULTS
  6.  
  7. GetDisplayPrefs Shading
  8.  
  9. IF RESULT = "Color" THEN DisplayPrefs Shading NTSCGray
  10. ELSE DisplayPrefs Shading Color
  11.  
  12.